home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library
/
Microsoft Programmer's Library (CD-ROM Database)(125-099-008)(Version 1.1a)(CDRM 162100)(1989).iso
/
SAMPCODE
/
OS2SDK11
/
TK4
/
OPENDLG
/
DATA.C
next >
Wrap
C/C++ Source or Header
|
1989-02-20
|
758b
|
21 lines
/***************************************************************************\
* DATA.C -- This file contains per process global variables
* Created by Microsoft Corporation, 1989
\***************************************************************************/
#define NO_DOS
#define NO_GPI
#include "tool.h"
/*
This library uses a NON SHARED DATA selector. This means each
process using the library gets its own selector, and also that
values cannot be shared and must be recreated for each process.
*/
HMODULE vhModule; /* Library module handle */
HHEAP vhheap; /* Library heap */
PSTR vrgsz[CSTRINGS]; /* Array of pointer to our strings (indexed
by IDS_... */